home *** CD-ROM | disk | FTP | other *** search
/ New Star Software Collection / NSS_Collection.iso / 5-029 turbo debugger and assem / disks.7z / 3 / CHAPXMPL.ARC / DELAY.ASM < prev    next >
Encoding:
Assembly Source File  |  1988-08-29  |  315 b   |  17 lines

  1.      DOSSEG
  2.      .MODEL  SMALL
  3.      .STACK  200h
  4.      .CODE
  5. Delay:
  6.      mov   cx,0
  7. DelayLoop:
  8.      loop  DelayLoop
  9.      ret
  10.  
  11. ProgramStart:
  12.      call  Delay         ;pause for the time required to
  13.                          ; execute 64K loops
  14.      mov   ah,4ch
  15.      int   21h
  16.      END   ProgramStart
  17.